home *** CD-ROM | disk | FTP | other *** search
/ The Macintosh Demo: Applications / Apple-MacintoshDemoApplicationsCD-1.0-1992.iso / More Information / Personal Press 2.0 / PPPouch / AutoCreate / Flyers / _NewWave / _NewWave
Encoding:
Text File  |  1992-06-08  |  4.7 KB  |  155 lines  |  [SGPA/SCPG]

  1. on Build
  2. dodocsetup
  3. locatefonts
  4. newpublication pages 1 columns 0 PageWidth 612 PageHeight 792 pageorientation portrait topmargin 36 bottommargin 36 leftmargin 36 rightmargin 36
  5. set gridsettings to 18,18
  6. set displayinvisibles to false
  7. set facingpages to false
  8. set gridsnap to false
  9. set lockguides to false
  10. set magneticguides to false
  11. set printcoloroptions to false
  12. set printcolornames to true
  13. set printcutouts to true
  14. set printregistrationmarks to false
  15. set printmarksoptions to no
  16. set printpageoptions to all
  17. set printtypeoptions to publication
  18. set spotcolor 1 to 0,0,0
  19. set spotcolor 2 to 65535,65535,65535
  20. set spotcolor 3 to 62167,2134,34028
  21. set spotcolor 4 to 0,32768,4528
  22. set spotcolor 5 to 577,43860,60159
  23. set spotcolor 6 to 56683,2242,1698
  24. set spotcolor 7 to 0,0,54272
  25. set spotcolor 8 to 64512,62333,1327
  26. set linepattern to 1
  27. set fillpattern to 2
  28. set color to 1
  29. set framelinetype to 1
  30. set mousecursor to roll
  31. set mousecursor to roll
  32. goto rightbackground
  33. PublicationSetup columns 1
  34. set mousecursor to roll
  35. goto page 1
  36. -- •p1 1•
  37. draw rectangle 231,151,577,464
  38. set framelinetype of last object to 2
  39. set linepattern of last object to 0
  40. set croprectangle of last object to -62,-42,476,389
  41. -- •p1 2•
  42. draw rectangle 38,255,213,555
  43. set locked of last object to true
  44. set linepattern of last object to 0
  45. -- •p1 3•
  46. draw rectangle 33,584,147,655
  47. set framelinetype of last object to 2
  48. set fillpattern of last object to 0
  49. set linepattern of last object to 0
  50. set croprectangle of last object to 0,0,114,71
  51. -- •p1 4•
  52. draw rectangle 36,663,221,757
  53. set locked of last object to true
  54. set framelinetype of last object to 2
  55. set linepattern of last object to 0
  56. -- •p1 5•
  57. draw rectangle 230,477,393,757
  58. set linepattern of last object to 0
  59. -- •p1 6•
  60. draw rectangle 35,153,210,228
  61. set locked of last object to true
  62. set framelinetype of last object to 2
  63. set linepattern of last object to 0
  64. -- •p1 7•
  65. draw rectangle 231,37,577,146
  66. set locked of last object to true
  67. set framelinetype of last object to 2
  68. set fillpattern of last object to 0
  69. set linepattern of last object to 0
  70. -- •p1 8•
  71. draw rectangle 413,476,576,757
  72. set framelinetype of last object to 2
  73. set linepattern of last object to 0
  74. -- •p1 9•
  75. draw Line 37,143,574,143
  76. set locked of last object to true
  77. set framelinetype of last object to other 8.000000
  78. set fillpattern of last object to 0
  79. PublicationSetup columns 1
  80. progressdialog show "creating stories"
  81. set the mousecursor to roll
  82. link page objects 1,2 to story "!selling_points"
  83. set the name of last story to "selling_points"
  84. put space into story "selling_points"
  85. select all text in story "selling_points"
  86. textsetup Helvetica "italic" 18 left
  87. set the mousecursor to roll
  88. link page objects 1,4 to story "!address"
  89. set the name of last story to "address"
  90. put space into story "address"
  91. select all text in story "address"
  92. textsetup Helvetica "plain" 10 left
  93. set the mousecursor to roll
  94. link page objects 1,5,1,8 to story "!bodytext"
  95. set the name of last story to "bodytext"
  96. put space into story "bodytext"
  97. select all text in story "bodytext"
  98. textsetup Helvetica "plain" 11 left
  99. set the mousecursor to roll
  100. link page objects 1,6 to story "!subhead"
  101. set the name of last story to "subhead"
  102. put space into story "subhead"
  103. select all text in story "subhead"
  104. textsetup Helvetica "bold,italic" 19 left
  105. set the mousecursor to roll
  106. link page objects 1,7 to story "!headline"
  107. set the name of last story to "headline"
  108. put space into story "headline"
  109. select all text in story "headline"
  110. textsetup Helvetica "bold,italic" 39 left
  111. choose maintool
  112. progressdialog hide
  113. end Build
  114.  
  115.  
  116. on locatefonts
  117. global vHelvetica, vPalatino, vTimes, vNewYork, systemfonts
  118. put fontfamilies into systemfonts
  119. if systemfonts contains "New York" then put "New York"  into vNewYork
  120. else put "Geneva" into vNewYork
  121. if systemfonts contains "helvetica" then put "helvetica"  into vHelvetica
  122. else put "Geneva" into vHelvetica
  123. if systemfonts contains "Times" then put "Times" into vTimes
  124. else put vNewYork into vTimes
  125. if systemfonts contains "Palatino" then put "Palatino" into vPalatino
  126. else put vTimes into vPalatino
  127.  
  128. end locatefonts
  129.  
  130. on dodocsetup
  131. global usersOldMeasurement
  132. set lockscreen to true
  133. Set ShuffleTextObjects to false
  134. put measurements into usersOldMeasurement
  135. set measurements to points
  136. set displayguides to false
  137. set view to actual
  138. set itemdel to ","
  139. set worddel to space
  140. set linedel to cr
  141. set saveglobals to true
  142. progressdialog open
  143. progressdialog show "creating publication"
  144. end dodocsetup
  145.  
  146. on textsetup thefont, theface, thesize, thejust
  147. global vHelvetica, vPalatino, vTimes, vNewYork
  148. set styleRecomposition to false
  149. set the textfont to value("v"&thefont)
  150. do "set the textface to "&theface
  151. set the textsize to thesize
  152. set the rulerjustification to thejust
  153. set styleRecomposition to true
  154. end textsetup
  155.